home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / libsrc / c / bios / bioscom.c next >
Encoding:
C/C++ Source or Header  |  1994-07-16  |  294 b   |  16 lines

  1. #include <bios.h>
  2. #include <go32.h>
  3. #include <dpmi.h>
  4. #include <stdlib.h>
  5.  
  6. int bioscom(int cmd, char data, int port)
  7. {
  8.   _go32_dpmi_registers r;
  9.   memset(&r, 0, sizeof(r));
  10.   r.h.ah = cmd;
  11.   r.h.al = data;
  12.   r.x.dx = port;
  13.   _go32_dpmi_simulate_int(0x14, &r);
  14.   return r.x.ax;
  15. }
  16.